home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / time / Time_Add.c < prev    next >
C/C++ Source or Header  |  1988-06-27  |  1KB  |  57 lines

  1. /* 
  2.  * Time_Add.c --
  3.  *
  4.  *    Source code for the Time_Add library procedure.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: Time_Add.c,v 1.2 88/06/27 17:23:21 ouster Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include <sprite.h>
  21. #include <spriteTime.h>
  22.  
  23.  
  24. /*
  25.  *----------------------------------------------------------------------
  26.  *
  27.  * Time_Add --
  28.  *
  29.  *      Adds two time values together. 
  30.  *
  31.  * Results:
  32.  *     The sum of the 2 arguments.
  33.  *
  34.  * Side effects:
  35.  *     None.
  36.  *
  37.  *----------------------------------------------------------------------
  38.  */
  39.  
  40. void
  41. Time_Add(time1, time2, resultPtr)
  42.     Time             time1;
  43.     Time          time2;
  44.     register    Time *resultPtr;
  45. {
  46.     resultPtr->seconds      = time1.seconds      + time2.seconds;
  47.     resultPtr->microseconds = time1.microseconds + time2.microseconds;
  48.  
  49.     /*
  50.      *  Normalize the microseconds portion to be less than 1 million.
  51.      */
  52.     if (resultPtr->microseconds >= ONE_SECOND) {
  53.     resultPtr->seconds     += 1;
  54.     resultPtr->microseconds -= ONE_SECOND;
  55.     }
  56. }
  57.